added Feb 2001 SDK
[windows-sources.git] / shared source / sscli20 / jscript / engine / completion.cs
blob15a0ce933337b7a2bbcf6c8e11cdd4264a5c939f
1 // ==++==
2 //
3 //
4 // Copyright (c) 2006 Microsoft Corporation. All rights reserved.
5 //
6 // The use and distribution terms for this software are contained in the file
7 // named license.txt, which can be found in the root of this distribution.
8 // By using this software in any fashion, you are agreeing to be bound by the
9 // terms of this license.
10 //
11 // You must not remove this notice, or any other, from this software.
12 //
13 //
14 // ==--==
16 namespace Microsoft.JScript {
18 using System;
20 internal sealed class Completion{
21 internal int Continue;
22 internal int Exit;
23 internal bool Return;
24 public Object value;
26 internal Completion(){
27 this.Continue = 0;
28 this.Exit = 0;
29 this.Return = false;
30 this.value = null;